﻿.notification-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 7px;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease-out forwards;
    border-left: 5px solid #4a3275;
}

.notification-img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 30px;
}

.notification-content {
    flex-grow: 1;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    
    color: black;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 16px;
    
}

.notification-content h5 {
    color: #333;
}

.notification-content p {
    color: #333;
    font-size: 14px;
}

.btn-notification:active {
    border: none !important;
}

.btn-notification.show {
    border: none !important;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    position: relative;
}

/* Badge Styling */

.custom-badge {
    position: absolute;
    top: 4px;
    right: 3px;
    transform: translate(50%, -50%);
    background-color: red;
    color: white;
    font-size: 3px;
    padding: 4px 4px;
    border-radius: 50%;
}

/* Dropdown Menu */
.custom-menu-nc {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 100;
    border-radius: 10px;
}

.custom-dropdown-nc:hover .custom-menu-nc {
    display: block;
}

.custom-menu-nc a {
    display: block;
    padding: 5px 12px;
    text-decoration: none;
    color: #333;
    text-align: left;
}

    .custom-menu-nc a:hover {
        background: #f0f0f0;
    }
.bg-light-iz-purple {
    background-color: #e9ddff !important;
}